home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------------------
- Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
- ----------------------------------------------------------------------------*/
-
- /******************************************************************************
- * ResolverItem Component
- ******************************************************************************/
- function ResolverItem()
- {
- this._properties = {};
- }
- ResolverItem.prototype = {
- __proto__: new ItemBase("ResolverItem"),
-
- ////////////////////////////////
- // nsIDOMXPathNSResolver
- lookupNamespaceURI: function ResolverItem_lookupNamespaceURI(aPrefix)
- {
- return this._properties[aPrefix] || null;
- }
- };